.section .main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.section .main .left-inner {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section .main .left-inner .image {
    max-width: 250px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    margin-top: 60px;
    padding-bottom: 60px;
}

.section .main .left-inner .image img {
    width: 100%;
}

.section .main .right-inner {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .main .right-inner table {
    width: 70%;
}

.section .main .right-inner table,
th,
td {
    border: 1px solid black;
    border-collapse: collapse;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}

#first .name .text,
#second .name .text,
#third .name .text,
#forth .name .text,
#fifth .name .text {
    font-size: .85em;
    font-family: "Poppins", serif;
    color: #5d6167;
    line-height: 1.3;
    margin: .5em 0;
    opacity: .6;
    text-transform: capitalize;
}

#first .name p:nth-child(2),
#second .name p:nth-child(2),
#third .name P:nth-child(2),
#forth .name P:nth-child(2),
#fifth .name P:nth-child(2) {
    font-size: 15px;
    font-family: "Poppins", serif;
    font-weight: 500;
    color: #2b2f38;
    /* text-transform: capitalize; */
}

.close-btn:hover {
    color: #555;
}

@media (max-width:768px) {

    .section .main {
        height: 130vh;
    }

    .section .main .left-inner {
        width: 100%;
    }

    .section .main .right-inner {
        width: 100%;
    }

    .section .main .right-inner table {
        width: 100%;
    }
}

@media (max-width:426px) {
    .section .main {
        height: 155vh;
    }
}